home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 10586 / 10586.xpi / chrome / content / options.js < prev    next >
Text File  |  2009-02-11  |  469b  |  17 lines

  1. // JavaScript Document
  2.  
  3.  
  4. //Attach unload event to options window
  5. window.addEventListener("beforeunload", function(){
  6.     
  7.     //Get reference to navigator window
  8.     var win = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  9.                 .getService(Components.interfaces.nsIWindowMediator)
  10.                     .getMostRecentWindow("navigator:browser");
  11.     
  12.     //If window exists
  13.     if(win){
  14.         //Update elements based on settings    
  15.         win.tinyurlgen.applysettings();
  16.         }
  17.     }, true);